#
# Oliver Soop oliversoop@gmail.com
# 23. October  2013
#
This script is for parsing URLs from Twitter Tweets and map and store relations between Tweets.
This script is prescribed for a database containing the information with a set schema. (See TwitterParsingScript.py for more info)
In this script there are following Python scripts files:
	configuration.py - Here the configuration of database is located.
	RelatedTweetFinder.py - This script finds Tweets related to the input Tweet (For more info see Twitter API and Retweeting). Exact description present in the corresponding file.
	SQLDumpLoader.py - This script loads database dumps into database and starts parsing Tweets. Exact description present in the corresponding file.
	TwitterParserOnly.py - This script starts parsing Tweets without database dump loading. Exact description present in the corresponding file.
	TwitterParsingScript.py - This script coordinates the whole processing. Exact description present in the corresponding file.
	URLChecker.py - This script checks if a URL is valid and if it is a short URL it will expand it. More exact description present in the corresponding file.

Necessary libraries:
	MySQL Python connector http://dev.mysql.com/downloads/connector/python/
	Python v2.7

To run the script, set the database connection info in configuration.py and output files in TwitterParserOnly.py and run the TwitterParserOnly.py.